crypto/tls.clientHelloMsg.pskBinders (field)

15 uses

	crypto/tls (current package)
		handshake_client.go#L504: 	hello.pskBinders = [][]byte{make([]byte, cipherSuite.hash.Size())}
		handshake_client_tls13.go#L369: 			hello.pskBinders = nil
		handshake_messages.go#L97: 	pskBinders                       [][]byte
		handshake_messages.go#L331: 				for _, binder := range m.pskBinders {
		handshake_messages.go#L382: 	for _, binder := range m.pskBinders {
		handshake_messages.go#L403: 	if len(pskBinders) != len(m.pskBinders) {
		handshake_messages.go#L406: 	for i := range m.pskBinders {
		handshake_messages.go#L407: 		if len(pskBinders[i]) != len(m.pskBinders[i]) {
		handshake_messages.go#L411: 	m.pskBinders = pskBinders
		handshake_messages.go#L660: 				m.pskBinders = append(m.pskBinders, binder)
		handshake_messages.go#L706: 		pskBinders:                       slices.Clone(m.pskBinders),
		handshake_server_tls13.go#L312: 	if len(hs.clientHello.pskIdentities) != len(hs.clientHello.pskBinders) {
		handshake_server_tls13.go#L401: 		if !hmac.Equal(hs.clientHello.pskBinders[i], pskBinder) {